home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / kernel / dev / ds5000.md / devSCSIC90Mach.h < prev    next >
C/C++ Source or Header  |  1992-12-18  |  1KB  |  49 lines

  1. /* 
  2.  * devSCSIC90Mach.h --
  3.  *
  4.  *    Def'ns specific to the SCSI NCR 53C9X Host Adaptor which
  5.  *    depend on the machine architecture.
  6.  *
  7.  * Copyright 1991 Regents of the University of California
  8.  * Permission to use, copy, modify, and distribute this
  9.  * software and its documentation for any purpose and without
  10.  * fee is hereby granted, provided that the above copyright
  11.  * notice appear in all copies.  The University of California
  12.  * makes no representations about the suitability of this
  13.  * software for any purpose.  It is provided "as is" without
  14.  * express or implied warranty.
  15.  *
  16.  *$Header: /cdrom/src/kernel/Cvsroot/kernel/dev/ds5000.md/devSCSIC90Mach.h,v 1.1 91/07/27 18:29:38 mottsmth Exp $ SPRITE (Berkeley)
  17.  */
  18.  
  19. #ifndef _DEVSCSIC90MACH
  20. #define _DEVSCSIC90MACH
  21.  
  22. /*
  23.  * The address register for DMA transfers.
  24.  */
  25. typedef int DMARegister;
  26.  
  27. /*
  28.  * If this bit is set in the DMA Register then the transfer is a write.
  29.  */
  30. #define DMA_WRITE    0x80000000
  31.  
  32. /*
  33.  * MAX_SCSIC90_CTRLS - Maximum number of SCSIC90 controllers attached to the
  34.  *             system. 
  35.  */
  36. #define    MAX_SCSIC90_CTRLS    4
  37.  
  38. #define REG_OFFSET    0
  39. #define    DMA_OFFSET    0x40000
  40. #define BUFFER_OFFSET    0x80000
  41. #define ROM_OFFSET    0xc0000
  42.  
  43. #define CLOCKCONV 5
  44.  
  45. #define FLUSH_BYTES(x,y,z)  bcopy((x),(y),(z));
  46.  
  47. #define EMPTY_BUFFER() Mach_EmptyWriteBuffer()
  48. #endif
  49.